home *** CD-ROM | disk | FTP | other *** search
/ Network CD 1 / Network CD.iso / tbag / 1-10 / tb1 / arc-files / newtopaz.arc / readme < prev    next >
Text File  |  1986-10-06  |  3KB  |  72 lines

  1. NOTE: The program and fonts in this arc set were developed using version
  2. 1.2 beta 4. I don't know if these work under 1.1  I hope they work on other
  3. systems such as the real 1.2 release.
  4.  
  5. The program contained herein permits the installation of a font to replace
  6. the default 80 column topaz font. I wanted to see if I could improve the
  7. quality of the Amiga color monitor's text output since everyone tells me
  8. its the fact that a monochrome monitor can overlap pixels that makes it
  9. look so much better. So I tried to create a font that does not have any
  10. serifs (those little curly cues on the end of letters) and was as straight
  11. as possible so the pixels would appear to overlap more. You can be the
  12. judge as to whether I was successful. The fonts that are included were
  13. built using the 1.2 fonteditor on the developers kit. You will notice that
  14. the bold font (ericbd) has extra bold [], and (), which I like when editing
  15. a program. It makes it much easier to see nested braces and parens. You may
  16. also wish to play with different colors thru preferences.
  17.  
  18.  
  19. Note that after running the program, only new windows and screens that call
  20. for the topaz font will use the new font. Old windows will remain using the
  21. original rom topaz font.
  22.  
  23.  
  24. This arc file contains:
  25.  
  26.         test.c        |  source program to replace topaz.font
  27.         test        |  executable of above
  28.  
  29.         ericbd.font    |  a sample font (bold)
  30.             8b    |  the font file for above
  31.         eric.font    |  a skinny font
  32.             8    |  the font file for above
  33.         install         |  a command file to install fonts    
  34.  
  35. In order to use the fonts, they must be moved to the fonts: directory, and
  36. create a subdirectory for each font file.
  37.  
  38. For example, 
  39.  
  40.         copy ericbd.font   fonts:
  41.         makedir            fonts:ericbd
  42.         copy 8b           fonts:ericbd/8b
  43.  
  44.         copy erics.font    fonts:
  45.         makedir            fonts:erics
  46.         copy 8           fonts:erics/8
  47.  
  48. (these commands exist in a file called install in this arc)
  49.  
  50. The program test, will patch into memory a font you specify on the command
  51. line:
  52.  
  53.         test    ericbd.font
  54.  
  55. will read in the font ericbd/8b and then UNLINK ALL fonts preceding the
  56. newly installed ericbd/8b font. Actually, test should be run only just
  57. after startup and before any other fonts are loaded, (or I can't say for
  58. sure if it will work properly - look at the code to see how it forces
  59. itself into the system font list). Once set, you lose a little memory and
  60. cannot go back until you reboot. You can however, run the command again on
  61. a  different font before rebooting. I made no effort to be sure this code
  62. is bulletproof; I simply wanted to see how an alternate font would look. As
  63. I think about it, you had better name your font with 5 or more letters or
  64. the overwriting with topaz might corrupt something. I would like to see a
  65. preferences option in the future to allow this font change.
  66.  
  67. Test.c is built using Manx with nothing special:
  68.  
  69.         cc test 
  70.         ln test.o -lc
  71.  
  72. Enjoy!